home *** CD-ROM | disk | FTP | other *** search
/ Hacker's Arsenal - The Cutting Edge of Hacking / Hacker's Arsenal - The Cutting Edge of Hacking.iso / texts / hackserv.txt < prev    next >
Text File  |  2001-07-11  |  4KB  |  88 lines

  1.                 Hacking Servers:
  2.                A Beginner's Guide
  3.  
  4.                  By: Lord Dredd
  5.  
  6.  
  7.  
  8.  
  9.     I am asked at least 5 or more times a day by young, beginning
  10. "hackers",   "How can I hack?" or "Is there a way to hack a web site?"
  11. Well there is. There are, in fact, literally hundreds of ways to do this. I
  12. will discuss a few in this text to get you started. Every hacker has to start
  13. somehow and hacking web servers and ftp servers is one of the easiest ways.
  14. If you are reading this I am assuming that you already have a basic knowledge
  15. of how web servers work and how to use some form of UNIX. But I am going to
  16. explain that stuff anyway for those of you who don't know.
  17.  
  18.  
  19.  
  20. Part 1: Simple UNIX Commands
  21.  
  22.     Most DOS commands have UNIX and Linux equivalents. Listed below are
  23. some of the main commands you will need to know to use a shell account.
  24.  
  25. HELP = HELP
  26. COPY = CP
  27. MOVE = MV
  28. DIR = LS
  29. DEL = RM
  30. CD = CD
  31.  
  32.     To see who else is on the system you can type WHO. To get information
  33. about a specific user on the system type FINGER <username>. Using those basic
  34. UNIX commands you can learn all you need to know about the system you are
  35. using.
  36.  
  37. Part 2: Cracking Passwords
  38.  
  39.     On UNIX systems the file that contains the passwords for all the users
  40. on the system is located in the /etc directory. The filename is passwd. I bet
  41. your thinking...."Great. All I have to do is get the file called /etc/passwd
  42. and I'll be a hacker." If that is what you are thinking then you are dead
  43. wrong. All the accounts in the passwd file have encrypted passwords. These
  44. passwords are one-way encrypted which means that there is no way to decrypt
  45. them. However, there are programs that can be used to obtain passwords from
  46. the file. The name of the program that I have found to be the best password
  47. cracker is called "Cracker Jack." This program uses a dictionary file composed
  48. of thousands of words. It compares the encrypted forms of the words in the
  49. list to the encrypted passwords in the passwd file and it notifies you when
  50. it finds a match. Cracker Jack can be found at my web site which is at
  51. http://www.geocities.com/SiliconValley/9185
  52.         Some wordlists can be found at the following ftp site: sable.ox.ac.uk/
  53. pub/wordlists. To get to the wordlist that I usually use goto that ftp site
  54. then goto the American directory. Once you are there download the file called
  55. dic-0294.tar.Z which is about 4 MB. To use that file it must be uncompressed
  56. using a program like Gzip for DOS or Winzip for Windows. After uncompressing
  57. the file it should be a text file around 8 MB and it is best to put it in the
  58. same directory as your cracking program. To find out how to use Cracker Jack
  59. just read the documentation that is included with it.
  60.  
  61. Part 3: The Hard Part (Finding Password Files)
  62.  
  63.     Up till now I have been telling you the easy parts of hacking a
  64. server. Now we get to the more difficult part. It's common sense. If the
  65. system administrator has a file that has passwords for everyone on his or her
  66. system they are not going to just give it to you. You have to have a way to
  67. retrieve the /etc/passwd file without logging into the system. There are 2
  68. simple ways that this can sometimes be accomplished. Often the /etc directory
  69. is not blocked from FTP. To get the passwd file this way try using an FTP
  70. client to access the site anonymously then check the /etc directory to see if
  71. access to the passwd file is restricted. If it is not restricted then download
  72. the file and run Cracker Jack on it. If it is restricted then try plan B. On
  73. some systems there is a file called PHF in the /cgi-bin directory. If there
  74. is then you are in luck. PHF allows users to gain remote access to files
  75. (including the /etc/passwd file) over the world wide web. To try this method
  76. goto your web browser and type in this URL:
  77. http://xxx.xxx.xxx/cgi-bin/phf?Qalias=x%0a/bin/cat%20/etc/passwd
  78. Then substitute the site you are trying to hack for the xxx.xxx.xxx.
  79. For example, if I wanted to hack St. Louis University (and I have already) I
  80. would type in http://www.slu.edu/cgi-bin/phf?Qalias=x%0a/bin/cat%20/etc/passwd
  81.  
  82.  
  83. Don't bother trying www.slu.edu because 
  84.  
  85.  
  86.  
  87.  
  88. ... texts ...